home *** CD-ROM | disk | FTP | other *** search
/ gondwana.ecr.mu.oz.au/pub/ / Graphics.tar / Graphics / ArtForTheMac.sea.hqx / Sample Scenes / Ball Scene next >
Text File  |  1992-09-27  |  579b  |  44 lines

  1. # This simple scene contains two colored balls.
  2.  
  3. raysperpixel 8
  4. output rlea
  5. antialiasing adaptive
  6.  
  7. up(0.0, 0.5, 0.5)
  8.  
  9. fogfactor 0.000005
  10. hazecolor 0.8, 0.7, 1.0
  11. rfactor      0.4
  12.  
  13. lookat(8.0, 8.0, 0.0,   0.0, 0.0, 1.0,  0)
  14.  
  15. fieldofview 50.0
  16.  
  17.  
  18. light {
  19.     colour 0.9, 0.9, 0.7
  20.     location (40.0, 10.0, 20.0)
  21. }
  22.  
  23. light {
  24.     colour 0.7, 1.1, 1.1
  25.     location (10.0, 40.0, 20.0)
  26. }
  27.  
  28. /* The balls */
  29.  
  30. sphere {
  31.     colour 0.3, 0.6, 0.3
  32.     material 0.2, 0.9, 0.1, 3.0
  33.     radius 3.0
  34.     center (0.0, 0.0, 0.0)
  35. }
  36.  
  37. sphere {
  38.     colour 0.3, 0.3, 0.6
  39.     material 0.3, 0.8, 0.2, 2.0
  40.     radius 3.0
  41.     center (0.0, 0.0, 4.0)
  42. }
  43.  
  44.